-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
API: Closes #7879: (drops not nan in panel.to_frame() by default) #10908
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
ba83a39
to
cee665d
Compare
@@ -867,7 +868,7 @@ def to_frame(self, filter_observations=True): | |||
|
|||
Parameters | |||
---------- | |||
filter_observations : boolean, default True |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
leave this in (and say its deprecated)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ok - will add it
this will need a sub-section in whatsnew/0.17.0. showing what the original behavior is and what the new is. |
can you update according to comments |
cee665d
to
7edbb3b
Compare
@jreback: updated the commit according to your comments! |
|
05bf61e
to
5f9e49a
Compare
5f9e49a
to
533cec7
Compare
added/fixed tests and added sub-section |
@@ -63,6 +63,7 @@ Highlights include: | |||
- Development support for benchmarking with the `Air Speed Velocity library <https://github.com/spacetelescope/asv/>`_ (:issue:`8316`) | |||
- Support for reading SAS xport files, see :ref:`here <whatsnew_0170.enhancements.sas_xport>` | |||
- Removal of the automatic TimeSeries broadcasting, deprecated since 0.8.0, see :ref:`here <whatsnew_0170.prior_deprecations>` | |||
- Deprecated ``filter_observations`` by ``dropna`` in ``Panel.to_frame`` and changed default to ``True`` (:issue:`7879`) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
move this to the whatsnew/v0.17.0 in the deprecation section. This needs an example in a sub-section. Showing the previous usage and the new.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Will do
this is pushed to 0.18.0 pls update when you can |
closing, but if you'd like to update, pls reopen |
closes #7879 by changing API (filter_observations=True now deprecated and replaced with dropna=False)